This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Laura Froponethernivu 19.Jan.04 01:33 PM a Web browser Domino Designer6.0.1 CF1Windows 2000
Hi all
To import some data from an external server I have following scheduled agent, see below. If the agent is run from a local client, it works fine but when I start the agent on the Domino server, it fails (con.ConnectTo method returns FALSE). The ODBC source is registered properly on the both machines of course.
I went through the admin help... but didn't find anything related to...
Any help appreciated!
Thanks for your time
Jindra
-----------------------------
Uselsx "*LSXODBC"
Dim con As New ODBCConnection
Dim msg As String
If Not con.ConnectTo("Server","UserID","Psw") Then << problem here: not connected
Messagebox "Could not connect to Server"
Exit Sub
End If